ea78d077613aeb923d2c60d6982bcbf9027c2aa9,extensions/src/org/pentaho/platform/plugin/services/importer/SolutionImportHandler.java,SolutionImportHandler,isFileHidden,#RepositoryFile#ManifestFile#String#,593

Before Change



  private boolean isFileHidden( RepositoryFile file, ManifestFile manifestFile, String sourcePath ) {
    Boolean result = manifestFile.isFileHidden();
    if ( result != null ) {
      return result; // file absent or must receive a new setting and the setting is exist
    }
    if ( file != null ) {
      return file.isHidden(); // old setting
    }
    result = solutionHelper.isInHiddenList( sourcePath );
    if ( result ) {
      return true;
    }

After Change


   */
  private boolean isFileHidden( IPlatformImportBundle bundle, String filePath ) {
    Boolean result = getImportSession().isFileHidden( filePath );
    return ( result != null ) ? result : solutionHelper.isInHiddenList( filePath );
  }

  private boolean isSystemPath( final String bundlePath ) {